print("***********************************") print("Hello, welcome to my adventure game!") print("Would you like to (1) play, or (2) quit?") answer = io.read("*number") if answer == 1 then print("Awesome, let's play!") print("You see a bear. Do you (1) pet it, (2) run away, or (3) hide?") answer2 = io.read("*number") if answer2 == 1 then print("This bear does not appreciate your affection.") elseif answer2 == 2 then print("You can't out run a bear! It chases and catches you.") else print("The bear can smell your fear, and finds you.") end print("The bear eats you. Game over. Thanks for playing.") else print("Fine then, be that way.") end